home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 1 / Mac Magazin and MacEasy Magazine CD - Issue 01.iso / Sharewarebibliothek / Powermac / C64 / SOURCE / Register.c < prev    next >
Text File  |  1994-06-06  |  3KB  |  111 lines

  1. /*
  2.     Commodore 64 Emulator v0.4      Earle F. Philhower III 
  3.     Copyright (C) 1993-4            (st916w9r@dunx1.ocs.drexel.edu)
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. #include "Processor.h"
  21. #include "FileTypes.h"
  22. #include "Error.h"
  23. #include "Preferences.h"
  24. #include "Resources.h"
  25.  
  26. extern int programMode;
  27. extern Cursor commieCursor, diskCursor;
  28.  
  29. word pc;
  30. byte a, x, y, flags, sp;
  31.  
  32. int RegisterInitialize()
  33. {
  34.     RAM[0]=RAM[1]=63;
  35.     
  36.     if (globalPref.ramCheck==0) hiROM[0x1d69]=0x9d;
  37.     else hiROM[0x1d69]=0x04;
  38.     
  39.     SetUpMemoryMap();
  40.     pc=WordAt(ResetTo);
  41.     sp=255;
  42.     flags=4;
  43.     
  44.     return kNoError;
  45. }
  46.  
  47. void SaveRAMFS(FSSpec *spec)
  48. {
  49.     short fnum;
  50.     long len;
  51.     
  52.     FSpCreate(spec, (OSType)APPLTYPE, (OSType)RAMFTYPE, 0);
  53.     FSpOpenDF(spec, fsRdWrPerm, &fnum);
  54.     len=sizeof(word); FSWrite(fnum, &len, &pc);
  55.     len=sizeof(byte); FSWrite(fnum, &len, &a);
  56.     len=sizeof(byte); FSWrite(fnum, &len, &x);
  57.     len=sizeof(byte); FSWrite(fnum, &len, &y);
  58.     len=sizeof(byte); FSWrite(fnum, &len, &flags);
  59.     len=sizeof(byte); FSWrite(fnum, &len, &sp);
  60.     len=65536; FSWrite(fnum, &len, RAM);
  61.     FSClose(fnum);
  62. }
  63.  
  64. void LoadRAMFS(FSSpec *spec)
  65. {
  66.     short fnum;
  67.     long len;
  68.     
  69.     FSpOpenDF(spec, fsRdPerm, &fnum);
  70.     len=sizeof(word); FSRead(fnum, &len, &pc);
  71.     len=sizeof(byte); FSRead(fnum, &len, &a);
  72.     len=sizeof(byte); FSRead(fnum, &len, &x);
  73.     len=sizeof(byte); FSRead(fnum, &len, &y);
  74.     len=sizeof(byte); FSRead(fnum, &len, &flags);
  75.     len=sizeof(byte); FSRead(fnum, &len, &sp);
  76.     len=65536; FSRead(fnum, &len, RAM);
  77.     FSClose(fnum);
  78.     
  79.     TotalRedrawVIC();
  80. }
  81.  
  82. void SaveRAM(void)
  83. {
  84.     StandardFileReply reply;
  85.     
  86.     StandardPutFile("\pSave RAM Image:", "\pRAM", &reply);
  87.     if (reply.sfGood)
  88.     {
  89.         SetCursor(&diskCursor);
  90.         SaveRAMFS(&(reply.sfFile));
  91.     }
  92.  
  93.     if (programMode==kRunning) SetCursor(&commieCursor);
  94.     else SetCursor(&qd.arrow);
  95. }
  96.  
  97. void LoadRAM(void)
  98. {
  99.     StandardFileReply reply;
  100.     
  101.     StandardGetFile(nil, (short)-1, nil, &reply);
  102.     if (reply.sfGood)
  103.     {
  104.         SetCursor(&diskCursor);
  105.         LoadRAMFS(&(reply.sfFile));
  106.     }
  107.     
  108.     if (programMode==kRunning) SetCursor(&commieCursor);
  109.     else SetCursor(&qd.arrow);
  110. }
  111.